home *** CD-ROM | disk | FTP | other *** search
/ Aminet 52 / Aminet 52 (2002)(GTI - Schatztruhe)[!][Dec 2002].iso / Aminet / dev / gg / gengetopt-2.6.lha / gengetopt-2.6 / src / gengetopt.h < prev    next >
C/C++ Source or Header  |  2002-03-01  |  1KB  |  32 lines

  1. /**
  2.  * Copyright (C) 1999, 2000, 2001  Free Software Foundation, Inc.
  3.  *
  4.  * This file is part of GNU gengetopt 
  5.  *
  6.  * GNU gengetopt is free software; you can redistribute it and/or modify 
  7.  * it under the terms of the GNU General Public License as published by 
  8.  * the Free Software Foundation; either version 2, or (at your option) 
  9.  * any later version. 
  10.  *
  11.  * GNU gengetopt is distributed in the hope that it will be useful, but 
  12.  * WITHOUT ANY WARRANTY; without even the implied warranty of 
  13.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
  14.  * Public License for more details. 
  15.  *
  16.  * You should have received a copy of the GNU General Public License along 
  17.  * with gengetopt; see the file COPYING. If not, write to the Free Software 
  18.  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. 
  19.  */
  20.  
  21. #ifndef _GENGETOPT_H
  22. #define _GENGETOPT_H
  23.  
  24. int gengetopt_define_package (char * s) ;
  25. int gengetopt_define_version (char * s) ;
  26. int gengetopt_define_purpose (char * s) ;
  27. int gengetopt_add_option (char * long_opt, char short_opt, char * desc, 
  28.               int type, int flagstat, int required,
  29.                           char *default_value);
  30.  
  31. #endif /* _GENGETOPT_H */
  32.